home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / tclX6.4c / dist / osSupport / Makefile < prev    next >
Encoding:
Makefile  |  1992-12-03  |  1.3 KB  |  41 lines

  1. #
  2. # Makefile  --
  3. #
  4. # Makefile for Extended Tcl ossupport code.
  5. #------------------------------------------------------------------------------
  6. # Copyright 1992 Karl Lehenbauer and Mark Diekhans.
  7. #
  8. # Permission to use, copy, modify, and distribute this software and its
  9. # documentation for any purpose and without fee is hereby granted, provided
  10. # that the above copyright notice appear in all copies.  Karl Lehenbauer and
  11. # Mark Diekhans make no representations about the suitability of this
  12. # software for any purpose.  It is provided "as is" without express or
  13. # implied warranty.
  14. #------------------------------------------------------------------------------
  15. # $Id: Makefile,v 1.1 92/12/03 12:38:50 jhh Exp Locker: jhh $
  16. #------------------------------------------------------------------------------
  17. #
  18.  
  19. #include "../Config.mk"
  20. #include "../config/$(TCL_CONFIG_FILE)"
  21. SHELL=/bin/sh
  22.  
  23. #------------------------------------------------------------------------------
  24.  
  25. CFLAGS=$(OPTIMIZE_FLAG) $(XCFLAGS) -I../$(TCL_UCB_DIR) $(MEM_DEBUG_FLAGS) \
  26.   $(SYS_DEP_FLAGS) $(SUPPORT_FLAGS)
  27.  
  28. #------------------------------------------------------------------------------
  29.  
  30. all: made.tmp
  31.  
  32. made.tmp: $(SUPPORT_OBJS)
  33.     $(AR) cr ../libtcl.a $(SUPPORT_OBJS)
  34.     touch made.tmp
  35.  
  36. #------------------------------------------------------------------------------
  37.  
  38. clean:
  39.     -rm -f made.tmp
  40.     -rm -f *.o
  41.